{%- if cookiecutter.enable_docker %}
# Git
.git
.gitignore

# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
.venv
venv/
ENV/

# IDE
.idea
.vscode
*.swp
*.swo

# Testing
.pytest_cache
.coverage
htmlcov/
.tox
.nox

# Documentation
docs/_build/
*.md
!README.md

# Build artifacts
dist/
build/
*.egg-info/

# Development files
.env
.env.local
*.db
*.sqlite

# Docker
Dockerfile*
docker-compose*.yml
.docker

# CI/CD
.github/
.gitlab-ci.yml

# Misc
.DS_Store
Thumbs.db
*.log
{%- else %}
# Docker is disabled
{%- endif %}
